home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2011 November
/
CHIP_2011_11.iso
/
Programy
/
Narzedzia
/
WebsiteX5
/
wsx5_free.exe
/
{app}
/
Res
/
imcaptcha.php
< prev
next >
Wrap
PHP Script
|
2011-01-21
|
391b
|
16 lines
<?php
include("imkeys.php");
include("../res/x5engine.php");
//Header("Content-Type: text/html; charset=UTF-8");
$cpt = new imCaptcha();
//Check Captcha
if ($_GET["action"] == "check")
echo $cpt->check($_GET["code"], $_GET["ans"]);
//Show Captcha chars
else if ($_GET["action"] == "show")
echo $cpt->show($_GET['code']);
// End of file imcaptcha.php